type encoding/json.decodeState
23 uses
encoding/json (current package)
decode.go#L101: var d decodeState
decode.go#L171: func (d *decodeState) unmarshal(v any) error {
decode.go#L211: type decodeState struct {
decode.go#L223: func (d *decodeState) readIndex() int {
decode.go#L232: func (d *decodeState) init(data []byte) *decodeState {
decode.go#L246: func (d *decodeState) saveError(err error) {
decode.go#L253: func (d *decodeState) addErrorContext(err error) error {
decode.go#L265: func (d *decodeState) skip() {
decode.go#L280: func (d *decodeState) scanNext() {
decode.go#L292: func (d *decodeState) scanWhile(op int) {
decode.go#L316: func (d *decodeState) rescanLiteral() {
decode.go#L357: func (d *decodeState) value(v reflect.Value) error {
decode.go#L402: func (d *decodeState) valueQuoted() any {
decode.go#L501: func (d *decodeState) array(v reflect.Value) error {
decode.go#L598: func (d *decodeState) object(v reflect.Value) error {
decode.go#L824: func (d *decodeState) convertNumber(s string) (any, error) {
decode.go#L842: func (d *decodeState) literalStore(item []byte, v reflect.Value, fromQuoted bool) error {
decode.go#L1021: func (d *decodeState) valueInterface() (val any) {
decode.go#L1038: func (d *decodeState) arrayInterface() []any {
decode.go#L1064: func (d *decodeState) objectInterface() map[string]any {
decode.go#L1115: func (d *decodeState) literalInterface() any {
stream.go#L17: d decodeState
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |